﻿::selection {
    background-color: #f7ae69;
}
::-moz-selection {
    background-color: #f7ae69;
}

.chatbot {
    position: fixed;
    right: -250px;
    bottom: 0px;
    cursor: pointer;
    background-color: transparent !important;
    transition: 0.4s;
    z-index: 9;
    width: 250px;
}

    .chatbot img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.chatbot-visible {
    
    transition: 0.4s;
    transform: translateX(-200px);
}


.speech-bubble {
    position: fixed;
    margin: .5em auto;
    padding: 1em;
    width: 10em;
    border-radius: .25em;
    transform: rotate(-4deg) rotateY(15deg);
    background: var(--theme-color);
    font: 2em/4 Century Gothic, Verdana, sans-serif;
    text-align: center;
    right: -340px;
    bottom: 287px;
    line-height: 1;
    z-index:10;
    cursor:pointer;
}

    .speech-bubble:before, .speech-bubble:after {
        position: fixed;
        z-index: -1;
        content: '';
    }

    .speech-bubble:after {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: inherit;
        transform: rotate(2deg) translate(.35em, -.15em) scale(1.02);
        background: #f4fbfe;
    }

    .speech-bubble:before {
        border: solid 0 transparent;
        border-right: solid 3.5em #f4fbfe;
        border-bottom: solid .25em var(--theme-color);
        bottom: .25em;
        left: 1.25em;
        width: 0;
        height: 0.3em;
        transform: rotate(45deg) skewX(75deg);
    }

.speech-bubble-visible {
    transition: 0.4s;
    transform: translateX(-370px);
    
}

chatbot-container {
    position: fixed;
    right: -270px;
    bottom: 0px;
    cursor: pointer;
    background-color: transparent !important;
    transition: 0.4s;
    z-index: 9;
    width: 550px;
}

.x {
    position: fixed;
    width: 23px;
    height: 23px;
    border: 2px solid #eef5df;
    background-color: dimgrey;
    border-radius: 50%;
    right: -60px;
    bottom: 260px;
    z-index: 100;
    transition: 0.4s;
}

    .x::before, .x::after {
        position: absolute;
        top: 8px;
        left: 3px;
        width: 13px;
        height: 3px;
        content: "";
        background-color: #fff;
        display: block;
    }

    .x::before {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .x::after {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .x:hover {
        cursor: pointer;
    }

        .x:hover::before, .x:hover::after {
            display: block;
        }

.x-visible {
    transform: translateX(-80px);
    transition: 0.4s;
}

.x-clicked {
    transform: translateX(-56px);
    transition: 1s;
}

.x-clicked-x-move{
    transform:translateX(30px);
}


.arrow-left {
    content: " ";
    border-left: 2px solid #6b6b6b;
    border-bottom: 2px solid #6b6b6b;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    cursor: pointer;
    display: block;
    right: 47px;
    bottom: 170px;
    position: fixed;
    display: none;
    transition: 0.2s;
    cursor: pointer;
    z-index: 100;
}

.arrow-left-show{
    display:block;
    transition:0.2s;
}


svg {
    width: 100px;
    display: block;
    margin: 40px auto 0;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    stroke: #f7ae69;
}

{
    -webkit-animation: dash .9s ease-in-out;
    animation: dash .9s ease-in-out;
}

&.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash .9s .35s ease-in-out forwards;
    animation: dash .9s .35s ease-in-out forwards;
}

&.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check .9s .35s ease-in-out forwards;
}

}

p {
    text-align: center;
    margin: 20px 0 60px;
    font-size: 1.25em;
    &.success
}

{
    color: #1abc9c;
}

&.error {
    color: #D06079;
}

}


@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.success-message{
    width: 500px;
    height: 500px;
}

.robot-head{
    width:30px;
    max-height:30px;
}

.robot-head img{
    max-width:100%;
    max-height:100%;
}

.kraken-cb-launcher{
    display:none!important;
}

.arrow-right::before {
    content: " ";
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    cursor: pointer;
    display: block;
    right: 47px;
    bottom: 170px;
    position: fixed;
    display: none;
    transition: 0.2s;
    cursor: pointer;
    z-index: 100;
}



/*PomladiMe*/
.scrollup img {
    max-width: 480%;
    position: relative;
    right: 90px;
    bottom: 90px;
}

.scrollup {
    background-color: transparent!important;
}

.modal-header{
    border-bottom: none!important;
}

.btn-primary {
    background-color: #f7ae69 !important;
    color: white;
}

    .btn-primary:hover{
        color:gray!important;
    }

    .dropzone {
        display: flex;
        justify-content: center;
    }

.modal-header button {
    padding: 10px 6px !important;
    width: 100%;
}

.row{
    margin-left: 0px!important;
    margin-right: 0px!important;
}

.btn{
    margin:6px;
}

    .btn.btn-success:hover {
        background-color: #f7ae69 !important;
    }
.btn-outline-rounded {
    margin: 15px;
}

.modal-footer{
    display: grid!important;
}

.modal-footer .btn + .btn{
    background-color: gainsboro;
}
/*/--- Spinner ---/*/
.lds-ripple {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 25px;
    top: 25px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.show-mobile{
    display: none;
}

.show-desktop {
    display: inline-flex;
}
/*
    Ringiovanitevi grey

*/
.features-content h4 {
    color: white;
}

.align-center h1 {
    padding: 2%;
    /*margin-bottom:100px;*/
}

.align-center p {
    padding: 25px;
}

@media (max-width:768px){
    .align-center h1 {
        /*margin-bottom: 110px;*/
    }

    .show-mobile {
        display: inline-flex;
    }

    .show-desktop {
        display: none;
    }
}

/*/--- Dropzone ---/*/
.dz-details {
    display: none;
}

.dz-image img{
    transform: scale(-1,1);
}


@media screen and (max-width: 550px){
    .modal-header button {
        margin-left: 4px!important;
        padding: 10px 6px !important;
    }

    #camera-video {
        width: 100%;
        height: 100%;
    }
    .mobile-small-font{
        font-size: 20px;
    }
}

/*Testimonial Slider*/

.testimonials-section {
    background: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider__nav {
    width: 12px;
    height: 12px;
    margin: 80px 12px!important;
    border-radius: 50%;
    z-index: 10;
    outline: 6px solid #ccc;
    outline-offset: -6px;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .slider__nav:checked {
        -webkit-animation: check 0.4s linear forwards;
        animation: check 0.4s linear forwards;
    }

        .slider__nav:checked:nth-of-type(1) ~ .slider__inner {
            left: 0%;
        }

        .slider__nav:checked:nth-of-type(2) ~ .slider__inner {
            left: -100%;
        }

        .slider__nav:checked:nth-of-type(3) ~ .slider__inner {
            left: -200%;
        }

        .slider__nav:checked:nth-of-type(4) ~ .slider__inner {
            left: -300%;
        }

        .slider__nav:checked:nth-of-type(5) ~ .slider__inner {
            left: -400%;
        }

.slider__inner {
    position: absolute;
    top: 80px;
    left: 0;
    width: 500%;
    height: auto;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.slider__contents {
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;

}

.slider__caption {
    font-size: 14px;
    color: #111;
    opacity: .5;
    font-family: 'Roboto';
    font-weight: bold;
}

.slider__txt {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Roboto';
    line-height: 1.7;
    color: #111;
    margin-top: -20px;
    margin-bottom: 20px;
    max-width: 750px;
}

quote {
    font-family: 'Arial';
    font-weight: bold;
    font-size: 100px;
    color: #eae0c8;
    margin-bottom: 0;
}

@-webkit-keyframes check {
    50% {
        outline-color: #333;
        box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }

    100% {
        outline-color: #333;
        box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    }
}

@keyframes check {
    50% {
        outline-color: #333;
        box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }

    100% {
        outline-color: #333;
        box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    }
}

/*Social icons*/
.social-icons {
    display: flex;
    justify-content:center;
}

.social-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-family: "Halvetica Neue",sans-serif,"Arial";
    font-size: 2.5rem;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: inset 1px 1px 2px #90a4ae, inset -1px -1px 2px white, 5px 5px 10px #90a4ae, -5px -5px 10px white;
    border: 6px solid rgba(230,228,228);
}
/* Tooltips */
.tooltip {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translate(-50%, -100%);
    transition: all 0.3s ease;
    z-index: 1;
}

    .tooltip:after {
        display: block;
        position: absolute;
        bottom: 1px;
        left: 50%;
        width: 0;
        height: 0;
        content: "";
        border: solid;
        border-width: 10px 10px 0 10px;
        border-color: transparent;
        transform: translate(-50%, 100%);
    }

/* color */
.social-icon--codepen {
    background: #000;
    color: #fff;
}

.social-icon--github {
    background: #4284c0;
    color: #fff;
}

.social-icon--twitter {
    background: #2b97f1;
    color: #fff;
}

.social-icon--youtube {
    background: #fa3217;
    color: white;
}

.social-icon--instagram {
    background: #f7ae69;
    color: black;
}

.social-icon--facebook {
    background: #f7ae69;
    color: black;
}
/* Hover Effect*/
.social-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -150%);
}

.social-icon--codepen .tooltip {
    background: #000;
    columns: currentColor;
}

    .social-icon--codepen .tooltip::after {
        border-top-color: black;
    }

.social-icon--facebook .tooltip {
    background: #3b5a9b;
    columns: currentColor;
}

    .social-icon--facebook .tooltip::after {
        border-top-color: #3b5a9a;
    }

.social-icon--twitter .tooltip {
    background: #2b97f1;
    columns: currentColor;
}

    .social-icon--twitter .tooltip::after {
        border-top-color: #2b97f1;
    }

.social-icon--youtube .tooltip {
    background: #f31344;
    columns: currentColor;
}

    .social-icon--youtube .tooltip::after {
        border-top-color: #f31344;
    }

.social-icon--instagram .tooltip {
    background: #527fa6;
    columns: currentColor;
}

    .social-icon--instagram .tooltip:after {
        border-top-color: #527fa6;
    }


.social-icon--github .tooltip {
    background: #4284c0;
    columns: currentColor;
}
    /* icon after effect */
    .social-icon--github .tooltip::after {
        border-top-color: #4284c0;
    }

/*.item{
    display:block!important;
}*/
.add-margin {
    margin-top: 50px;
}

@media(max-width:1200px){
    .add-margin{
        margin-top:30px;
    }
}

@media(max-width:768px){
    .add-margin {
        margin-top: 0px;
    }
}

.kraken-cb-launcher{
    display:none!important;
}

.kcb-popup-container.kcb-popup-container-visible{
    display:none!important;
}

blockquote .small:before, blockquote footer:before, blockquote small:before{
    content:none!important;
}

.logo-image{
    position:absolute;
    top:0;
    left:0;
    width:8%;
    padding:10px;
}

.my-row{
    display:flex;
    padding-left:15px;
    padding-right:15px;
}

.padding-top-50{
    padding-top: 50px;
}

@media(max-width:768px){
    .logo-image{
        width:20%;
    }
    .my-row{
        flex-direction:column;
    }
    .padding-top-50{
        padding-top:0;
    }

}

@media(max-width:750px){
    .features-icon-box{
        padding:15px!important;
    }
}